home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Tcl / tclPort.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-02  |  652 b   |  30 lines

  1. /*
  2.  * tclPort.h --
  3.  *
  4.  *    This header file handles porting issues that occur because
  5.  *    of differences between systems.  It reads in platform specific
  6.  *    portability files.
  7.  *
  8.  * Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) tclPort.h 1.15 96/02/07 17:24:21
  14.  */
  15.  
  16. #ifndef _TCLPORT
  17. #define _TCLPORT
  18.  
  19. #if defined(__WIN32__) || defined(_WIN32)
  20. #   include "tclWinPort.h"
  21. #else
  22. #   if defined(MAC_TCL)
  23. #    include "tclMacPort.h"
  24. #    else
  25. #    include "tclUnixPort.h"
  26. #    endif
  27. #endif
  28.  
  29. #endif /* _TCLPORT */
  30.